home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / magazine / installxcad / readme < prev    next >
Text File  |  1994-09-21  |  8KB  |  247 lines

  1.                               X-CAD 2000
  2.                               ==========
  3.  
  4. Thank you for purchasing X-CAD  2000.  This file contains some general
  5. notes and additional information that we  were  not able to include in
  6. the manual, before its printing.
  7.  
  8.  
  9. Installation
  10. ============
  11.  
  12. X-CAD now uses Commodore's Installer utility for installing the  files
  13. to  your hard  drive.  You can no longer run  X-CAD directly  from the
  14. distribution  floppies, this means if you want to run it from floppies
  15. you will have to use the "Install-XCAD2000-floppy"  utility.  This can
  16. take a fair amount time! In a two-drive A3000 the floppy install takes
  17. about  15 minutes.  For a single-drive  68000-based system,  this time
  18. will be a lot longer.  We apologise in advance for this, but emphasise
  19. that this is "A Good Thing" because it means  that in  normal use  you
  20. will never corrupt your original set of disks...
  21.  
  22. Making directory assignments manually
  23. =====================================
  24.  
  25. If you  wish  to  make  the  directory  assignments,  for  X-CAD 2000,
  26. manually, or you have an  unusual  system  set  up, you should add the
  27. following to your StartupII or User-Startup file.
  28.  
  29.         ASSIGN MENUS:              <drive>XCAD2000/MENUS
  30.         ASSIGN XCAD20003DPMODS:    <drive>XCAD2000/PMODS
  31.         ASSIGN XCAD20003DHANDLERS: <drive>XCAD2000/HANDLERS
  32.         ASSIGN DRAWINGS:           <drive>XCAD2000/DRAWINGS
  33.         ASSIGN XSDATA:             <drive>XCAD2000/XSDATA
  34.         ASSIGN XSFONTS:            <drive>XCAD2000/XSFONTS
  35.         ASSIGN XSLOVLY:            <drive>XCAD2000/XSLOVLY
  36.         ASSIGN XSMODS:             <drive>XCAD2000/XSMODS
  37.         ASSIGN XSPOVLY:            <drive>XCAD2000/XSPOVLY
  38.         ASSIGN SYMBOLS:            <drive>XCAD2000/SYMBOLS
  39.         ASSIGN XCAD20003D:         <drive>XCAD2000
  40.  
  41. Where <drive> is your hard-disk path  name. e.g. "DH0:", "SYS:CAD/" or
  42. "JH1:"
  43.  
  44.  
  45.  
  46.                      HPGL Plotter - Tricks & Tips
  47.                      ----------------------------
  48.  
  49. Most Hewlett Packard plotters use the serial interface. Unfortunately,
  50. both  Hewlett Packard  plotters  and  Amigas  sometimes have "unusual"
  51. aspects in their  serial  communications.  The  following  are various
  52. tricks and tips that X-CAD users, with HPGL plotters, have passed onto
  53. us, over the years.  You  will  find  that  almost all Hewlett Packard
  54. plotters,  using  a  serial  interface,  will  require  some  form  of
  55. initialisation  before  use  with  X-CAD.  Naturally,  this  does  not
  56. normally apply to plotters using the parallel interface.
  57.  
  58. HP7475A Plotter
  59. ---------------
  60. The HP7475A requires Xon/Xoff  handshaking  which  is  not used in its
  61. default mode. In  order  to  activate  the  handshaking, the following
  62. escape sequence must be loaded into  the  plotter. This can be done by
  63. sending a file to  the  plotter  to  initialise  it.  This file can be
  64. created as follows:
  65.  
  66. COPY * to ram:HPXON
  67. <ESC>.M;10;10;13:<RETURN>
  68. <ESC>.N;19:<RETURN>
  69. <ESC>.180;;17:<RETURN><CTRL\>
  70. COPY ram:HPXON to s:HPXON
  71.  
  72. Note - The symbol <ESC> refers to  the escape key. The symbol <RETURN>
  73. refers to the return key. The  symbol  <CTRL\> refers to the keystroke
  74. produced by holding down the  CTRL  key  and hitting the (\) backslash
  75. key.
  76.  
  77. Set your plotter for 9600 Baud.  8  data  bits. 1 stop bit. No parity.
  78. Run thew preferences tool and set the Amiga for custom/generic printer
  79. and serial port output. Go into  change  serail  to match the Amiga to
  80. the plotter. Set handshaking to XON/XOFF  and save the preferences. To
  81. use the HPXON file  in  your  Startup-Sequence  add the following line
  82. before the LOADWB command:
  83.  
  84. COPY s:HPXON to ser:
  85.  
  86.  
  87. Initialisation using Amiga BASIC
  88. --------------------------------
  89.  
  90. Another way of creating the  necessary  initialization  file is to use
  91. Amiga BASIC, or a similar program  language.  A program to do the same
  92. as the above in Amiga BASIC would look like this:
  93.  
  94. REM ********************************
  95. REM set up program for hpgl plotters
  96. REM   by Tim Gathercole - 8/6/92
  97. REM ********************************
  98. OPEN "RAM:HPSETUP" FOR OUTPUT AS #1
  99.         PRINT #1, CHR$(27);
  100.         PRINT #1,".(;";
  101.         PRINT #1,CHR$(27);
  102.         PRINT #1,".";
  103.         PRINT #1,"I81;;17:";
  104.         PRINT #1,CHR$(27);
  105.         PRINT #1,".N;19:"
  106. CLOSE #1
  107.  
  108. The above has the advantage of being able to be re-written so that the
  109. output file goes directly to  the  serial  port.  This  can be done by
  110. substituting "SER:"  for  "RAM:HPSETUP",  in  the  program.  This will
  111. enable initialisation to be carried  out  by  clicking  on an icon. We
  112. have found that most Hewlett  Packard  plotters will work correctly if
  113. the above  initialisation  file  is  used.  A  compiled  copy  of both
  114. versions of this program are in the utilities draw. However, for those
  115. who prefer to write  their  own  initiation  file, further details, on
  116. other plotters are provided below.
  117.  
  118.  
  119.  
  120. HP7448 Colour Pro Plotter
  121. -------------------------
  122.  
  123. To use XON/XOFF with the above plotter you will have to create a small
  124. initiation file. This file can be created as follows:
  125.  
  126.  
  127. If your plotter has an add-on buffer use the following:
  128.  
  129. COPY * to ram:HPXON
  130. <ESC>.P1:<ESC>.T1900;74:<ESC>.@1900<RETURN><CTRL\>
  131. COPY ram:HPXON to s:HPXON
  132.  
  133. If your plotter does not have a buffer use the following:
  134.  
  135. COPY * to ram:HPXON
  136. <ESC>.P1:<RETURN><CTRL\>
  137. COPY ram:HPXON to s:HPXON
  138.  
  139. Note - The symbol <ESC> refers to  the escape key. The symbol <RETURN>
  140. refers to the return key. The  symbol  <CTRL\> refers to the keystroke
  141. produced by holding down the  CTRL  key  and hitting the (\) backslash
  142. key.
  143.  
  144. Set your plotter for 9600 Baud.  8  data  bits. 1 stop bit. No parity.
  145. Run thew preferences tool and set the Amiga for custom/generic printer
  146. and serial port output. Go into  change  serail  to match the Amiga to
  147. the plotter. Set handshaking to XON/XOFF  and save the preferences. To
  148. use the HPXON file  in  your  Startup-Sequence  add the following line
  149. before the LOADWB command:
  150.  
  151. COPY s:HPXON to ser:
  152.  
  153.  
  154. Pausing Plotters
  155. ----------------
  156. If using a large data buffer  between  your Amiga and plotter, then by
  157. creating a file containing the following  HPGL commands and sending it
  158. to the plotter before sending a second  plot to the buffer, it will be
  159. possible to store more than one drawing in the buffer.
  160.  
  161. SP;
  162. EC;
  163. PG;
  164. EC1:
  165. DE;
  166.  
  167. This series of commands should put the plotter into pause mode.
  168.  
  169. An Amiga BASIC program  to  create  a  file containing these commands,
  170. would look like this:
  171.  
  172. REM ********************************
  173. REM Pause program for hpgl plotters
  174. REM   by Tim Gathercole - 8/6/92
  175. REM ********************************
  176. OPEN "RAM:HPPAUSE" FOR OUTPUT AS #1
  177.         PRINT #1,"SP;EC;PG;EC1:DE;"
  178. CLOSE #1
  179.  
  180. Again this output file can  be  sent  directly  to  the serial port by
  181. substituting "SER:" for "RAM:HPPAUSE", in the program.
  182.  
  183.  
  184.  
  185. HP7570A DraftPro
  186. ----------------
  187.  
  188. COPY * to ram:HPXON
  189. <ESC>.M;10;10;13:<RETURN>
  190. <ESC>.N;19:<RETURN>
  191. <ESC>.I80;;17:<RETURN><CTRL\>
  192. COPY ram:HPXON to s:HPXON
  193.  
  194. Note - The symbol <ESC> refers to  the escape key. The symbol <RETURN>
  195. refers to the return key. The  symbol  <CTRL\> refers to the keystroke
  196. produced by holding down the  CTRL  key  and hitting the (\) backslash
  197. key.
  198.  
  199. Set your plotter for 9600 Baud.  8  data  bits. 1 stop bit. No parity.
  200. Run thew preferences tool and set the Amiga for custom/generic printer
  201. and serial port output. Go into  change  serail  to match the Amiga to
  202. the plotter. Set handshaking to XON/XOFF  and save the preferences. To
  203. use the HPXON file  in  your  Startup-Sequence  add the following line
  204. before the LOADWB command:
  205.  
  206. COPY s:HPXON to ser:
  207.  
  208. Suggested DIP switch settings are:
  209.  
  210.  -------------------------
  211.  |  6  5  4  3  2  1  0  |
  212.  | |-||-||-||-||-||-||-| |
  213.  | | || || ||\|| ||\|| | |
  214.  | |\||\||\|| ||\|| ||\| |
  215.  | |-||-||-||-||-||-||-| |
  216.  -------------------------
  217.  
  218.  
  219. RTS-CTS Protocol on HP7585B
  220. ---------------------------
  221.  
  222. The suggest cable configuration is as follows:
  223.  
  224.    1  2  3  4  6  5  7
  225.    |  |  |  |__|  |  |
  226.    |  |  |        |  |
  227.    |  |  |        |  |
  228.    |  |  |        |  |
  229.    |  |  |        |  |
  230.    1  3  2       20  7
  231.  
  232. Handshake: RTS-CTS
  233. Read bits: 8
  234. Write Bits: 8
  235. Stop Bits: 1
  236. Baud Rate: 9600
  237. Buffer Size: 1024
  238.  
  239.  
  240. General Note
  241. ------------
  242.  
  243. The above pieces of information have been passed onto us by our users.
  244. However, we cannot guarantee that  they  will  work with all models of
  245. Hewlett Packard plotter, or  even  up  dated  versions of the plotters
  246. mentioned.
  247.